ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / TreeMap<T> Class / ChildItemsPath Property






In This Topic
    ChildItemsPath Property (TreeMap<T>)
    In This Topic
    Gets or sets the name of the property (or properties) used to generate child items in hierarchical data.
    Syntax
    'Declaration
     
    
    Public Property ChildItemsPath As System.String()
    'Usage
     
    
    Dim instance As TreeMap(Of T)
    Dim value() As System.String
     
    instance.ChildItemsPath = value
     
    value = instance.ChildItemsPath
    public System.string[] ChildItemsPath {get; set;}
    public read-write property ChildItemsPath: System.array of String; 
    public function get,set ChildItemsPath : System.String[]
    public: __property System.string*[]* get_ChildItemsPath();
    public: __property void set_ChildItemsPath( 
       System.string*[][]* value
    );
    public:
    property System.array<String^>^ ChildItemsPath {
       System.array<String^>^ get();
       void set (    System.array<String^>^ value);
    }
    Remarks
    Set this property to an array containing the names of the properties that contain child items at each level, when the items are child items at different levels with different names (e.g. [ 'Accounts', 'Checks', 'Earnings' ]).
    See Also